home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Commands
/
Protocols
/
Closing.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
343b
|
23 lines
// Closing.h
#ifndef Closing_h
#define Closing_h
#ifndef SavingOption_h
#include "SavingOption.h"
#endif
class Closing
{
protected:
~Closing() {}
public:
void CloseAskingToSave() { Close( SavingOption::ask ); }
virtual bool CanClose() const;
virtual void Close( SavingOption save = SavingOption::ask ) = 0;
};
#endif